* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #202121;
    color: #ededed;
} 


/* header */

.header {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    background: #ededed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    text-decoration: none;
    color: #000000;
    font-size: 23px;
    font-weight: 700;
}



.navbar a {
    letter-spacing: 1.2px;
    text-decoration: none;
    font-size: 19px;
    color: #000000;
    font-weight: 500;
    margin-left: 35px;
}

.navbar a:hover, .navbar a.active  {
    color: #00abf0;
    border-bottom: 2px solid #00abf0;

}

/*content*/



.aboutme {
    height: 100vh;
    align-items: center;
    padding: 15%;
}


.content > h1 {
    display: inline;
    position: relative;
    font-size: 42px;
    font-weight: 700;
}

.content > p {
    position: relative;
    font-size: 16px;
    margin: 20px 0 50px;
    line-height: 1.2;
    max-width: 70%;
    line-height: 1.7;
    font-weight: 500;
    text-align: justify;
}


.content p::before, .content h1::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #323232;
    animation: showRight 1s forwards;
    animation-delay: .4s;
}



/* Experienes */



.work {
    height: 100vh;
    align-items: center;
    padding: 15%;
    background-color: #685252;
}

.experiences > h1{
    position: relative;
    font-size: 42px;
    font-weight: 700;
}

.experiences > p{
    position: relative;
    max-width: 70%;
    font-size: 16px;
    margin: 20px 0 50px;
    font-weight: 500;
    line-height: 1.7;
    text-align: justify;
}


.experiences > img{
    float: right;
}


.experiences p::before, .experiences h1::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(112, 94, 94);
    animation: showRight 1s forwards;
    animation-delay: .4s;
}


/* Courses and Skills */



.skills {
    height: 100vh;
    align-items: center;
    padding: 10%;
    background-color: #909394;
}

.courses > h1{
    font-size: 42px;
    font-weight: 700;
}

.courses > p {
    position: relative;
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    margin: 20px 0 50px;

}













































@keyframes showRight {
    100% {
        width: 0;
    }
}